home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 014 / where3.doc < prev    next >
Text File  |  1985-10-30  |  2KB  |  41 lines

  1.  
  2. This WHEREIS.ASM is derived from the WHEREIS program published in 
  3. Softalk/PC by John Socha, with a few "improvements" added by RD:
  4.  
  5.  
  6. If extension is not given it defaults to wildcard,
  7.  
  8.   e.g.  WHEREIS XYZ is the same as WHEREIS XYZ.*
  9.  
  10.  
  11. When a matching filename is found, will ask if you want more
  12. to be searched for (unless you specified /g or /G in original
  13. command line).  You can press "y" or "Y" to search for more
  14. files, or any other key to terminate the WHEREIS program.
  15. This prevents thrashing around on the disk looking for more 
  16. matches, when the user already knows there aren't any.
  17.  
  18.  
  19. You can supply a "G" switch to force all matches to be printed
  20. without the "more" query.
  21.  
  22.    e.g.  WHEREIS XYZ /G   or   whereis xyz /g
  23.  
  24.  
  25. If no filename is supplied in the input line, will give an error
  26. message.  Also, if no match is found, will print a message to
  27. that effect instead of quietly terminating without any output.
  28. Also checks to make sure it is running under DOS 2.0.
  29.  
  30.  
  31. When you put this WHEREIS.EXE on your system, make sure you erase
  32. all previous copies of WHEREIS.COM or WHEREIS.EXE.  It is best to
  33. put WHEREIS in one of the directories pointed to by a PATH command 
  34. so that the utility is always available no matter where you are
  35. working.  For instance, if you have WHEREIS.EXE in the subdirectory
  36. SYSTEM on drive D, put the following line in your AUTOEXEC.BAT file:
  37.  
  38.         PATH=D:\SYSTEM
  39.  
  40.  
  41.